home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / BBS / EZY120_1.ZIP / STRUCT.ARJ / CLIB.ARJ / STR6.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1996-03-09  |  198 b   |  13 lines

  1.  
  2. #include <string.h>
  3.  
  4. char *RemoveBackslash(char *Source)
  5. {
  6.   int SLen = strlen(Source);
  7.   if (SLen) {
  8.     if (Source[--SLen] == '\\')
  9.       Source[SLen] = '\0';
  10.   }
  11.   return(Source);
  12. }
  13.